#map-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Die eigentliche Karte */
#map {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    background: #f8f9fa; /* Ein ganz zartes Grau für das "leere" Meer */
}

/* Entfernt das blaue Viereck/Outline beim Klicken */
path.leaflet-interactive:focus {
    outline: none;
}

/* Styling für die Legende */
.info.legend {
    padding: 12px;
    background: white;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    line-height: 20px;
    color: #444;
}
.info.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 10px;
    opacity: 0.8;
    border: 1px solid #ddd;
}